home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / BNU22SR1.ZIP / src / binutils.2 / bfd / hppa.c < prev    next >
C/C++ Source or Header  |  1993-05-30  |  27KB  |  1,054 lines

  1. /* bfd back-end for HP PA-RISC SOM objects.
  2.    Copyright (C) 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
  3.  
  4.    Contributed by the Center for Software Science at the
  5.    University of Utah (pa-gdb-bugs@cs.utah.edu).
  6.  
  7. This file is part of BFD, the Binary File Descriptor library.
  8.  
  9. This program is free software; you can redistribute it and/or modify
  10. it under the terms of the GNU General Public License as published by
  11. the Free Software Foundation; either version 2 of the License, or
  12. (at your option) any later version.
  13.  
  14. This program is distributed in the hope that it will be useful,
  15. but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17. GNU General Public License for more details.
  18.  
  19. You should have received a copy of the GNU General Public License
  20. along with this program; if not, write to the Free Software
  21. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  22.  
  23. #include "bfd.h"
  24. #include "sysdep.h"
  25.  
  26. /* @@FIXME This is not a reasonable set of conditions to permit
  27.    cross-compilation, obviously.  It also isn't enough to support hppa-elf
  28.    targets either.  Can we eliminate the HPUX or BSD dependencies, or
  29.    at least get the conditionals more localized?  */
  30. #if defined (HOST_HPPAHPUX) || defined (HOST_HPPABSD)
  31.  
  32. #include "libbfd.h"
  33. #include "libhppa.h"
  34.  
  35. #include <stdio.h>
  36. #include <sys/types.h>
  37. #include <sys/param.h>
  38. #include <sys/dir.h>
  39. #include <signal.h>
  40. #include <machine/reg.h>
  41. #include <sys/user.h>           /* After a.out.h  */
  42. #include <sys/file.h>
  43. #include <errno.h>
  44.  
  45. /* Magic not defined in standard HP-UX header files until 8.0 */
  46.  
  47. #ifndef CPU_PA_RISC1_0
  48. #define CPU_PA_RISC1_0 0x20B
  49. #endif /* CPU_PA_RISC1_0 */
  50.  
  51. #ifndef CPU_PA_RISC1_1
  52. #define CPU_PA_RISC1_1 0x210
  53. #endif /* CPU_PA_RISC1_1 */
  54.  
  55. #ifndef _PA_RISC1_0_ID
  56. #define _PA_RISC1_0_ID CPU_PA_RISC1_0
  57. #endif /* _PA_RISC1_0_ID */
  58.  
  59. #ifndef _PA_RISC1_1_ID
  60. #define _PA_RISC1_1_ID CPU_PA_RISC1_1
  61. #endif /* _PA_RISC1_1_ID */
  62.  
  63. #ifndef _PA_RISC_MAXID
  64. #define _PA_RISC_MAXID    0x2FF
  65. #endif /* _PA_RISC_MAXID */
  66.  
  67. #ifndef _PA_RISC_ID
  68. #define _PA_RISC_ID(__m_num)        \
  69.     (((__m_num) == _PA_RISC1_0_ID) ||    \
  70.      ((__m_num) >= _PA_RISC1_1_ID && (__m_num) <= _PA_RISC_MAXID))
  71. #endif /* _PA_RISC_ID */
  72.  
  73. struct container {
  74.   struct header f;
  75.   struct som_exec_auxhdr e;
  76. };
  77.  
  78. static bfd_target *
  79. hppa_object_setup (abfd, file_hdrp, aux_hdrp)
  80.      bfd *abfd;
  81.      struct header *file_hdrp;
  82.      struct som_exec_auxhdr *aux_hdrp;
  83. {
  84.   struct container *rawptr;
  85.   struct header *f;
  86.   struct hppa_data_struct *rawptr1;
  87.   asection *text, *data, *bss;
  88.  
  89.   rawptr = (struct container *) bfd_zalloc (abfd, sizeof (struct container));
  90.   if (rawptr == NULL) {
  91.     bfd_error = no_memory;
  92.     return 0;
  93.   }
  94.  
  95.   rawptr1 = (struct hppa_data_struct *) bfd_zalloc (abfd, sizeof (struct hppa_data_struct));
  96.   if (rawptr1 == NULL) {
  97.     bfd_error = no_memory;
  98.     return 0;
  99.   }
  100.   
  101.   abfd->tdata.hppa_data = rawptr1;
  102.   obj_file_hdr (abfd) = &rawptr->f;
  103.   obj_aux_hdr (abfd) = &rawptr->e;
  104.   *obj_file_hdr (abfd) = *file_hdrp;
  105.   *obj_aux_hdr (abfd) = *aux_hdrp;
  106.  
  107.   /* Set the file flags */
  108.   abfd->flags = NO_FLAGS;
  109.   if (file_hdrp->entry_offset)
  110.     abfd->flags |= HAS_RELOC;
  111.   if (file_hdrp->symbol_total)
  112.     abfd->flags |= HAS_LINENO | HAS_DEBUG | HAS_SYMS | HAS_LOCALS;
  113.  
  114.   bfd_get_start_address (abfd) = aux_hdrp->exec_entry;
  115.  
  116.   obj_pa_symbols (abfd) = (hppa_symbol_type *)NULL;
  117.   bfd_get_symcount (abfd) = file_hdrp->symbol_total;
  118.  
  119.   bfd_default_set_arch_mach(abfd, bfd_arch_hppa, 0);
  120.  
  121.   /* create the sections.  This is raunchy, but bfd_close wants to reclaim
  122.      them */
  123.  
  124.   text = bfd_make_section(abfd, ".text");
  125.   data = bfd_make_section(abfd, ".data");
  126.   bss = bfd_make_section(abfd, ".bss");
  127.  
  128.   text->_raw_size = aux_hdrp->exec_tsize;
  129.   data->_raw_size = aux_hdrp->exec_dsize;
  130.   bss->_raw_size = aux_hdrp->exec_bsize;
  131.  
  132.   text->flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS);
  133.   data->flags = (SEC_ALLOC | SEC_LOAD | SEC_HAS_CONTENTS);
  134.   bss->flags = SEC_ALLOC;
  135.  
  136.   /* The virtual memory addresses of the sections */                    
  137.   text->vma = aux_hdrp->exec_tmem;                          
  138.   data->vma = aux_hdrp->exec_dmem;                          
  139.   bss->vma = aux_hdrp->exec_bfill;                           
  140.                                                                         
  141.   /* The file offsets of the sections */                                
  142.   text->filepos = aux_hdrp->exec_tfile;                      
  143.   data->filepos = aux_hdrp->exec_dfile;                      
  144.                                                                        
  145.   /* The file offsets of the relocation info */                         
  146.   text->rel_filepos = 0;                  
  147.   data->rel_filepos = 0;                  
  148.                                                                         
  149.   /* The file offsets of the string table and symbol table.  */         
  150.   obj_sym_filepos (abfd) = file_hdrp->symbol_location;                  
  151.   bfd_get_symcount (abfd) = file_hdrp->symbol_total;
  152.   obj_str_filepos (abfd) = file_hdrp->symbol_strings_location;           
  153.   obj_stringtab_size (abfd) = file_hdrp->symbol_strings_size;
  154.  
  155.   return abfd->xvec;
  156. }
  157.  
  158. /* Create a new BFD section for NAME.  If NAME already exists, then create a
  159.    new unique name, with NAME as the prefix.  This exists because SOM .o files
  160.    created by the native compiler can have a $CODE$ section for each
  161.    subroutine.
  162.  */
  163.  
  164. static asection *
  165. make_unique_section (abfd, name, num)
  166.      bfd *abfd;
  167.      CONST char *name;
  168.      int num;
  169. {
  170.   asection *sect;
  171.   char *newname;
  172.   char altname[100];
  173.  
  174.   sect = bfd_make_section (abfd, name);
  175.   while (!sect)
  176.     {
  177.       sprintf(altname, "%s-%d", name, num++);
  178.       sect = bfd_make_section (abfd, altname);
  179.     }
  180.  
  181.   newname = bfd_alloc (abfd, strlen(sect->name) + 1);
  182.   strcpy (newname, sect->name);
  183.  
  184.   sect->name = newname;
  185.   return sect;
  186. }
  187.  
  188. /* Convert all of the space and subspace info into BFD sections.  Each space
  189.    contains a number of subspaces, which in turn describe the mapping between
  190.    regions of the exec file, and the address space that the program runs in.
  191.    BFD sections which correspond to spaces will overlap the sections for the
  192.    associated subspaces.  */
  193.  
  194. static int
  195. setup_sections (abfd, file_hdr)
  196.      bfd *abfd;
  197.      struct header *file_hdr;
  198. {
  199.   char *space_strings;
  200.   int space_index;
  201.  
  202. /* First, read in space names */
  203.  
  204.   space_strings = alloca (file_hdr->space_strings_size);
  205.   if (!space_strings)
  206.     return 0;
  207.  
  208.   if (bfd_seek (abfd, file_hdr->space_strings_location, SEEK_SET) < 0)
  209.     return 0;
  210.   if (bfd_read (space_strings, 1, file_hdr->space_strings_size, abfd)
  211.       != file_hdr->space_strings_size)
  212.     return 0;
  213.  
  214.   /* Loop over all of the space dictionaries, building up sections */
  215.  
  216.   for (space_index = 0; space_index < file_hdr->space_total; space_index++)
  217.     {
  218.       struct space_dictionary_record space;
  219.       struct subspace_dictionary_record subspace;
  220.       int subspace_index, tmp;
  221.       asection *space_asect;
  222.  
  223.       /* Read the space dictionary element */
  224.       if (bfd_seek (abfd, file_hdr->space_location
  225.                    + space_index * sizeof space, SEEK_SET) < 0)
  226.     return 0;
  227.       if (bfd_read (&space, 1, sizeof space, abfd) != sizeof space)
  228.     return 0;
  229.  
  230.       /* Setup the space name string */
  231.       space.name.n_name = space.name.n_strx + space_strings;
  232.  
  233.       /* Make a section out of it */
  234.       space_asect = make_unique_section (abfd, space.name.n_name, space_index);
  235.       if (!space_asect)
  236.     return 0;
  237.  
  238.       /* Now, read in the first subspace for this space */
  239.       if (bfd_seek (abfd, file_hdr->subspace_location
  240.                + space.subspace_index * sizeof subspace,
  241.         SEEK_SET) < 0)
  242.     return 0;
  243.       if (bfd_read (&subspace, 1, sizeof subspace, abfd) != sizeof subspace)
  244.     return 0;
  245.       /* Seek back to the start of the subspaces for loop below */
  246.       if (bfd_seek (abfd, file_hdr->subspace_location
  247.                + space.subspace_index * sizeof subspace,
  248.         SEEK_SET) < 0)
  249.     return 0;
  250.  
  251.       /* Setup the section flags as appropriate (this is somewhat bogus, as
  252.      there isn't a clear mapping between what's in the space record, and
  253.      what BFD can describe here). */
  254.       if (space.is_loadable)
  255.     space_asect->flags |= SEC_ALLOC;
  256.       if (space.is_defined)
  257.     space_asect->flags |= SEC_LOAD;
  258.  
  259.       /* Setup the start address and file loc from the first subspace record */
  260.       space_asect->vma = subspace.subspace_start;
  261.       space_asect->filepos = subspace.file_loc_init_value;
  262.       space_asect->alignment_power = subspace.alignment;
  263.  
  264.       /* Loop over the rest of the subspaces, building up more sections */
  265.       for (subspace_index = 0; subspace_index < space.subspace_quantity;
  266.        subspace_index++)
  267.     {
  268.       asection *subspace_asect;
  269.  
  270.       /* Read in the next subspace */
  271.       if (bfd_read (&subspace, 1, sizeof subspace, abfd)
  272.           != sizeof subspace)
  273.         return 0;
  274.  
  275.       /* Setup the subspace name string */
  276.       subspace.name.n_name = subspace.name.n_strx + space_strings;
  277.  
  278.       /* Make a section out of this subspace */
  279.       subspace_asect = make_unique_section (abfd, subspace.name.n_name,
  280.                         space.subspace_index + subspace_index);
  281.  
  282.       if (!subspace_asect)
  283.         return 0;
  284.  
  285.       if (subspace.is_loadable)
  286.         subspace_asect->flags |= SEC_ALLOC | SEC_LOAD;
  287.       if (subspace.code_only)
  288.         subspace_asect->flags |= SEC_CODE;
  289.  
  290.       subspace_asect->vma = subspace.subspace_start;
  291.       subspace_asect->_cooked_size = subspace.subspace_length;
  292.       subspace_asect->_raw_size = subspace.initialization_length;
  293.       subspace_asect->alignment_power = subspace.alignment;
  294.       subspace_asect->filepos = subspace.file_loc_init_value;
  295.  
  296.     }
  297.       /* Setup the sizes for the space section based upon the info in the
  298.      last subspace of the space. */
  299.       space_asect->_cooked_size = (subspace.subspace_start - space_asect->vma)
  300.                   + subspace.subspace_length;
  301.       space_asect->_raw_size = (subspace.file_loc_init_value
  302.                 - space_asect->filepos)
  303.                    + subspace.initialization_length;
  304.     }
  305. }
  306.  
  307. static bfd_target *
  308. hppa_object_p (abfd)
  309.      bfd *abfd;
  310. {
  311.   struct header file_hdr;
  312.   struct som_exec_auxhdr aux_hdr;
  313.  
  314.   if (bfd_read ((PTR) &file_hdr, 1, FILE_HDR_SIZE, abfd) != FILE_HDR_SIZE)
  315.     return 0;
  316.  
  317.   if (!_PA_RISC_ID (file_hdr.system_id))
  318.     {
  319.       bfd_error = wrong_format;
  320.       return 0;
  321.     }
  322.  
  323.   switch (file_hdr.a_magic)
  324.     {
  325.     case RELOC_MAGIC:    /* I'm not really sure about all of these types... */
  326.     case EXEC_MAGIC:
  327.     case SHARE_MAGIC:
  328.     case DEMAND_MAGIC:
  329. #ifdef DL_MAGIC
  330.     case DL_MAGIC:
  331. #endif
  332. #ifdef SHL_MAGIC
  333.     case SHL_MAGIC:
  334. #endif
  335.       break;
  336.     default:
  337.       bfd_error = wrong_format;
  338.       return 0;
  339.     }
  340.  
  341.   if (file_hdr.version_id != VERSION_ID
  342.       && file_hdr.version_id != NEW_VERSION_ID)
  343.     {
  344.       bfd_error = wrong_format;
  345.       return 0;
  346.     }
  347.  
  348.   if (bfd_read ((PTR) &aux_hdr, 1, AUX_HDR_SIZE, abfd) != AUX_HDR_SIZE)
  349.     bfd_error = wrong_format;
  350.  
  351.   if (!setup_sections (abfd, &file_hdr))
  352.     return 0;
  353.  
  354.   return hppa_object_setup(abfd, &file_hdr, &aux_hdr);
  355. }
  356.  
  357. static boolean
  358. DEFUN(hppa_mkobject,(abfd),
  359.       bfd *abfd)
  360.   fprintf (stderr, "hppa_mkobject unimplemented\n");
  361.   fflush (stderr);
  362.   abort ();
  363.   return (false);
  364. }
  365.  
  366. boolean
  367. DEFUN(hppa_write_object_contents,(abfd),
  368.       bfd *abfd)
  369. {
  370.   fprintf (stderr, "hppa_write_object_contents unimplemented\n");
  371.   fflush (stderr);
  372.   abort ();
  373.   return (false);
  374. }
  375.  
  376. static unsigned int
  377. hppa_get_symtab_upper_bound (abfd)
  378.      bfd *abfd;
  379. {
  380.   fprintf (stderr, "hppa_get_symtab_upper_bound unimplemented\n");
  381.   fflush (stderr);
  382.   abort ();
  383.   return (0);
  384. }
  385.  
  386. static unsigned int
  387. hppa_get_reloc_upper_bound (abfd, asect)
  388.      bfd *abfd;
  389.      sec_ptr asect;
  390. {
  391.   fprintf (stderr, "hppa_get_reloc_upper_bound unimplemented\n");
  392.   fflush (stderr);
  393.   abort ();
  394.   return (0);
  395. }
  396.  
  397. static unsigned int
  398. hppa_canonicalize_reloc (abfd, section, relptr, symbols)
  399.      bfd *abfd;
  400.      sec_ptr section;
  401.      arelent **relptr;
  402.      asymbol **symbols;
  403. {
  404.   fprintf (stderr, "hppa_canonicalize_reloc unimplemented\n");
  405.   fflush (stderr);
  406.   abort ();
  407. }
  408.  
  409. extern bfd_target hppa_vec;
  410.  
  411. static unsigned int
  412. hppa_get_symtab (abfd, location)
  413.      bfd *abfd;
  414.      asymbol **location;
  415. {
  416.   fprintf (stderr, "hppa_get_symtab unimplemented\n");
  417.   fflush (stderr);
  418.   abort ();
  419.   return (0);
  420. }
  421.  
  422. static asymbol *
  423. hppa_make_empty_symbol (abfd)
  424.      bfd *abfd;
  425. {
  426.   hppa_symbol_type  *new =
  427.     (hppa_symbol_type *)bfd_zalloc (abfd, sizeof (hppa_symbol_type));
  428.   new->symbol.the_bfd = abfd;
  429.  
  430.   return &new->symbol;
  431. }
  432.  
  433. static void 
  434. hppa_print_symbol (ignore_abfd, afile,  symbol, how)
  435.      bfd *ignore_abfd;
  436.      PTR afile;
  437.      asymbol *symbol;
  438.      bfd_print_symbol_type how;
  439. {
  440.   fprintf (stderr, "hppa_print_symbol unimplemented\n");
  441.   fflush (stderr);
  442.   abort ();
  443. }
  444.  
  445. static boolean
  446. hppa_new_section_hook (abfd, newsect)
  447.      bfd *abfd;
  448.      asection *newsect;
  449. {
  450.   newsect->alignment_power = 3;
  451.  
  452.   /* We allow more than three sections internally */
  453.   return true;
  454. }
  455.  
  456. static boolean
  457. hppa_set_section_contents (abfd, section, location, offset, count)
  458.      bfd *abfd;
  459.      sec_ptr section;
  460.      PTR location;
  461.      file_ptr offset;
  462.      bfd_size_type count;
  463. {
  464.   fprintf (stderr, "hppa_set_section_contents unimplimented\n");
  465.   fflush (stderr);
  466.   abort();
  467.   return false;
  468. }
  469.  
  470. static boolean
  471. hppa_set_arch_mach (abfd, arch, machine)
  472.      bfd *abfd;
  473.      enum bfd_architecture arch;
  474.      unsigned long machine;
  475. {
  476.   fprintf (stderr, "hppa_set_arch_mach unimplemented\n");
  477.   fflush (stderr);
  478.   /* Allow any architecture to be supported by the hppa backend */
  479.   return  bfd_default_set_arch_mach(abfd, arch, machine);
  480. }
  481.  
  482. static boolean
  483. hppa_find_nearest_line (abfd, section, symbols, offset, filename_ptr,
  484.             functionname_ptr, line_ptr)
  485.      bfd *abfd;
  486.      asection *section;
  487.      asymbol **symbols;
  488.      bfd_vma offset;
  489.      CONST char **filename_ptr;
  490.      CONST char **functionname_ptr;
  491.      unsigned int *line_ptr;
  492. {
  493.   fprintf (stderr, "hppa_find_nearest_line unimplemented\n");
  494.   fflush (stderr);
  495.   abort ();
  496.   return (false);
  497. }
  498.  
  499. static int
  500. hppa_sizeof_headers (abfd, reloc)
  501.       bfd *abfd;
  502.       boolean reloc;
  503. {
  504.   fprintf (stderr, "hppa_sizeof_headers unimplemented\n");
  505.   fflush (stderr);
  506.   abort ();
  507.   return (0);
  508. }
  509.  
  510. static asection *
  511. make_bfd_asection (abfd, name, flags, _raw_size, vma, alignment_power)
  512.      bfd *abfd;
  513.      CONST char *name;
  514.      flagword flags;
  515.      bfd_size_type _raw_size;
  516.      bfd_vma vma;
  517.      unsigned int alignment_power;
  518. {
  519.   asection *asect;
  520.  
  521.   asect = bfd_make_section (abfd, name);
  522.   if (!asect)
  523.     return NULL;
  524.  
  525.   asect->flags = flags;
  526.   asect->_raw_size = _raw_size;
  527.   asect->vma = vma;
  528.   asect->filepos = bfd_tell (abfd);
  529.   asect->alignment_power = alignment_power;
  530.  
  531.   return asect;
  532. }
  533.  
  534. #ifdef HOST_HPPAHPUX
  535. static bfd_target *
  536. hppa_core_file_p (abfd)
  537.      bfd *abfd;
  538. {
  539.   core_hdr (abfd) = bfd_zalloc (abfd, sizeof (struct hppa_core_struct));
  540.   if (!core_hdr (abfd))
  541.     return NULL;
  542.  
  543.   while (1)
  544.     {
  545.       int val;
  546.       struct corehead core_header;
  547.  
  548.       val = bfd_read ((void *)&core_header, 1, sizeof core_header, abfd);
  549.       if (val <= 0)
  550.     break;
  551.       switch (core_header.type)
  552.     {
  553.     case CORE_KERNEL:
  554.     case CORE_FORMAT:
  555.       bfd_seek (abfd, core_header.len, SEEK_CUR); /* Just skip this */
  556.       break;
  557.     case CORE_EXEC:
  558.       {
  559.         struct proc_exec proc_exec;
  560.         bfd_read ((void *)&proc_exec, 1, core_header.len, abfd);
  561.         strncpy (core_command (abfd), proc_exec.cmd, MAXCOMLEN + 1);
  562.       }
  563.       break;
  564.     case CORE_PROC:
  565.       {
  566.         struct proc_info proc_info;
  567.         core_regsec (abfd) = make_bfd_asection (abfd, ".reg",
  568.                             SEC_ALLOC+SEC_HAS_CONTENTS,
  569.                             core_header.len,
  570.                             (int)&proc_info - (int)&proc_info.hw_regs,
  571.                             2);
  572.         bfd_read (&proc_info, 1, core_header.len, abfd);
  573.         core_signal (abfd) = proc_info.sig;
  574.       }
  575.       if (!core_regsec (abfd))
  576.         return NULL;
  577.       break;
  578.     case CORE_DATA:
  579.       core_datasec (abfd) = make_bfd_asection (abfd, ".data",
  580.                            SEC_ALLOC+SEC_LOAD+SEC_HAS_CONTENTS,
  581.                            core_header.len,
  582.                            core_header.addr,
  583.                            2);
  584.       if (!core_datasec (abfd))
  585.         return NULL;
  586.       bfd_seek (abfd, core_header.len, SEEK_CUR);
  587.       break;
  588.     case CORE_STACK:
  589.       core_stacksec (abfd) = make_bfd_asection (abfd, ".stack",
  590.                             SEC_ALLOC+SEC_LOAD+SEC_HAS_CONTENTS,
  591.                             core_header.len,
  592.                             core_header.addr,
  593.                             2);
  594.       if (!core_stacksec (abfd))
  595.         return NULL;
  596.       bfd_seek (abfd, core_header.len, SEEK_CUR);
  597.       break;
  598.     default:
  599.       fprintf (stderr, "Unknown HPPA/HPUX core file section type %d\n",
  600.            core_header.type);
  601.       bfd_seek (abfd, core_header.len, SEEK_CUR);
  602.       break;
  603.     }
  604.     }
  605.  
  606.   /* OK, we believe you.  You're a core file (sure, sure).  */
  607.  
  608.   return abfd->xvec;
  609. }
  610.  
  611. static char *
  612. hppa_core_file_failing_command (abfd)
  613.      bfd *abfd;
  614. {
  615.   return core_command (abfd);
  616. }
  617.  
  618. /* ARGSUSED */
  619. static int
  620. hppa_core_file_failing_signal (abfd)
  621.      bfd *abfd;
  622. {
  623.   return core_signal (abfd);
  624. }
  625.  
  626. /* ARGSUSED */
  627. static boolean
  628. hppa_core_file_matches_executable_p  (core_bfd, exec_bfd)
  629.      bfd *core_bfd, *exec_bfd;
  630. {
  631.   return true;          /* FIXME, We have no way of telling at this point */
  632. }
  633.  
  634. /* Miscellaneous Support Functions -- Control Structures and Functions
  635.    for the PA.  */
  636.  
  637. unsigned int assemble_3(x)
  638.      unsigned int x;
  639. {
  640.   return ( ( (x & 1 ) << 2 ) | ( ( x & 6 ) >> 1 ) ) & 7; 
  641. }
  642.  
  643. void dis_assemble_3(x,r)
  644.      unsigned int x;
  645.      unsigned int *r;
  646. {
  647.   *r = ( ( (x & 4 ) >> 2 ) | ( ( x & 3 ) << 1 ) ) & 7;
  648. }
  649.  
  650. unsigned int assemble_12(x,y)
  651.      unsigned int x,y;
  652. {
  653.   return ( ( ( y & 1 ) << 11 ) | ( ( x & 1 ) << 10 ) | ( ( x & 0x7fe ) >> 1) ) & 0xfff;
  654. }
  655.  
  656. void dis_assemble_12(as12,x,y)
  657.      unsigned int as12;
  658.      unsigned int *x,*y;
  659. {
  660.   *y = ( as12 & 0x800 ) >> 11;
  661.   *x = ( ( as12 & 0x3ff ) << 1 ) | ( ( as12 & 0x400 ) >> 10 );
  662. }
  663.  
  664. unsigned long assemble_17(x,y,z)
  665.      unsigned int x,y,z;
  666. {
  667.   unsigned long temp;
  668.  
  669.   temp = ( ( z &    1 ) << 16 ) |
  670.      ( ( x & 0x1f ) << 11 ) |
  671.      ( ( y &    1 ) << 10 ) |
  672.       ( ( y & 0x7fe ) >> 1);
  673.   return temp & 0x1ffff;
  674. }
  675.  
  676. void dis_assemble_17(as17,x,y,z)
  677.      unsigned int as17;
  678.      unsigned int *x,*y,*z;
  679. {
  680.  
  681.   *z =     ( as17 & 0x10000 ) >> 16;
  682.   *x =     ( as17 & 0x0f800 ) >> 11;
  683.   *y = ( ( ( as17 & 0x00400 ) >> 10 ) | ( ( as17 & 0x3ff ) << 1 ) ) & 0x7ff;
  684. }
  685.  
  686. unsigned long assemble_21(x)
  687.      unsigned int x;
  688. {
  689.   unsigned long temp;
  690.  
  691.   temp = ( ( x &        1 ) << 20 ) |
  692.      ( ( x &    0xffe ) <<  8 ) |
  693.      ( ( x &   0xc000 ) >>  7 ) |
  694.      ( ( x & 0x1f0000 ) >> 14 ) |
  695.      ( ( x & 0x003000 ) >> 12 );
  696.   return temp & 0x1fffff;
  697. }
  698.  
  699. void dis_assemble_21(as21,x)
  700.      unsigned int as21,*x;
  701. {
  702.   unsigned long temp;
  703.  
  704.  
  705.   temp  = ( as21 & 0x100000 ) >> 20;
  706.   temp |= ( as21 & 0x0ffe00 ) >> 8;
  707.   temp |= ( as21 & 0x000180 ) << 7;
  708.   temp |= ( as21 & 0x00007c ) << 14;
  709.   temp |= ( as21 & 0x000003 ) << 12;
  710.   *x = temp;
  711. }
  712.  
  713. unsigned long sign_ext(x,len)
  714.      unsigned int x,len;
  715. {
  716.   unsigned int sign;
  717.   unsigned int result;
  718.   unsigned int len_ones;
  719.   int i;
  720.  
  721.   i = 0;
  722.   len_ones = 0;
  723.   while ( i < len ) {
  724.     len_ones = (len_ones << 1) | 1;
  725.     i++;
  726.   }
  727.  
  728.   sign = (x >> (len-1)) & 1;
  729.  
  730.   if ( sign )
  731.     result = ( ~0 ^ len_ones ) | ( len_ones & x );
  732.   else
  733.     result = len_ones & x;
  734.  
  735.   return result;
  736. }
  737.  
  738. static unsigned int ones(n)
  739.      int n;
  740. {
  741.   unsigned int len_ones;
  742.   int i;
  743.  
  744.   i = 0;
  745.   len_ones = 0;
  746.   while ( i < n ) {
  747.     len_ones = (len_ones << 1) | 1;
  748.     i++;
  749.   }
  750.  
  751.   return len_ones;
  752. }
  753.  
  754. void sign_unext(x,len,result)
  755.      unsigned int x,len;
  756.      unsigned int *result;
  757. {
  758.   unsigned int len_ones;
  759.  
  760.   len_ones = ones(len);
  761.  
  762.   *result = x & len_ones;
  763. }
  764.  
  765. unsigned long low_sign_ext(x,len)
  766.      unsigned int x,len;
  767. {
  768.   unsigned int temp1,temp2;
  769.   unsigned int len_ones;
  770.  
  771.   len_ones = ones(len);
  772.  
  773.   temp1 = ( x & 1 ) << (len-1);
  774.   temp2 = ( ( x & 0xfffffffe ) & len_ones ) >> 1;
  775.   return sign_ext( (temp1 | temp2),len);
  776. }
  777.  
  778. void low_sign_unext(x,len,result)
  779.      unsigned int x,len;
  780.      unsigned int *result;
  781. {
  782.   unsigned int temp;
  783.   unsigned int sign;
  784.   unsigned int rest;
  785.   unsigned int one_bit_at_len;
  786.   unsigned int len_ones;
  787.  
  788.   len_ones = ones(len);
  789.   one_bit_at_len = 1 << (len-1);
  790.  
  791.   sign_unext(x,len,&temp);
  792.   sign = temp & one_bit_at_len;
  793.   sign >>= (len-1);
  794.  
  795.   rest = temp & ( len_ones ^ one_bit_at_len );
  796.   rest <<= 1;
  797.  
  798.   *result = rest | sign;
  799. }
  800.  
  801. /* These work when 'y' is a power of two only. */
  802.  
  803. long
  804. round_down(x,y)
  805. long x,y;
  806. {
  807.     return x & ~(y-1);
  808. }
  809.  
  810. long
  811. round(x,y)
  812. long x,y;
  813. {
  814.     return (x + y/2) & ~(y-1);
  815. }
  816.  
  817. long
  818. round_up(x,y)
  819. long x,y;
  820. {
  821.     return x - (x | ~(y-1));
  822. }
  823.  
  824. /*    L(Symbol, Addend):    */
  825. /*        round_down (Symbol + Addend, 2048)    */
  826.  
  827. long
  828. L(Symbol, Addend)
  829. {
  830.     return (round_down(Symbol + Addend, 2048)) >> 11;
  831. }
  832.  
  833. /*    R(Symbol, Addend):    */
  834. /*        Symbol + Addend - round_down (Symbol + Addend, 2048)    */
  835.  
  836. long
  837. R(Symbol, Addend)
  838. {
  839.     return Symbol + Addend - round_down (Symbol + Addend, 2048);
  840. }
  841.  
  842. /*    LS(Symbol, Addend):    */
  843. /*        round (Symbol + Addend, 2048)    */
  844.  
  845. long
  846. LS(Symbol, Addend)
  847. {
  848.     return round (Symbol + Addend, 2048);
  849. }
  850.  
  851. /*    RS(Symbol, Addend):    */
  852. /*        Symbol + Addend - round (Symbol + Addend, 2048)    */
  853.  
  854. long
  855. RS(Symbol, Addend)
  856. {
  857.     return Symbol + Addend - round (Symbol + Addend, 2048);
  858. }
  859.  
  860. /*    LD(Symbol, Addend):    */
  861. /*        round_up (Symbol + Addend, 2048)    */
  862.  
  863. long
  864. LD(Symbol, Addend)
  865. {
  866.     return (round_up (Symbol + Addend, 2048)) >> 11;
  867. }
  868.  
  869. /*    RD(Symbol, Addend):    */
  870. /*        Symbol + Addend - round_up (Symbol + Addend, 2048)    */
  871.  
  872. long
  873. RD(Symbol, Addend)
  874. {
  875.     return Symbol + Addend - round_up (Symbol + Addend, 2048);
  876. }
  877.  
  878. /*    LR(Symbol, Addend):    */
  879. /*        round_down (Symbol, 2048) + round (Addend, 8192)    */
  880.  
  881. long
  882. LR(Symbol, Addend)
  883. {
  884.     return (round_down (Symbol, 2048) + round (Addend, 8192)) >> 11;
  885. }
  886.  
  887. /*    RR(Symbol, Addend):    */
  888. /*        Symbol - round_down (Symbol, 2048) +    */
  889. /*            Addend - round (Addend, 8192)    */
  890.  
  891. long
  892. RR(Symbol, Addend)
  893. {
  894.     return Symbol
  895.         - round_down (Symbol, 2048)
  896.             + Addend - round (Addend, 8192);
  897. }
  898.  
  899. unsigned long
  900. DEFUN(hppa_field_adjust, (value,constant_value,r_field),
  901.       unsigned long value AND
  902.       unsigned long constant_value AND
  903.       unsigned short r_field)
  904. {
  905.     unsigned long init_value = value;
  906.     value += constant_value;
  907.     switch (r_field) {
  908.     case e_fsel:        /* F  : no change                      */
  909.         break;
  910.  
  911.     case e_lssel:       /* LS : if (bit 21) then add 0x800
  912.                             arithmetic shift right 11 bits */
  913.         if ( value & 0x00000400 )
  914.             value += 0x800;
  915.         value = (value & 0xfffff800) >> 11;
  916.         BFD_ASSERT(value == LS(init_value,constant_value));
  917.         break;
  918.  
  919.     case e_rssel:       /* RS : Sign extend from bit 21        */
  920.         if ( value & 0x00000400 )
  921.             value |= 0xfffff800;
  922.         else
  923.             value &= 0x7ff;
  924.         BFD_ASSERT(value == RS(init_value,constant_value));
  925.         break;
  926.  
  927.     case e_lsel:        /* L  : Arithmetic shift right 11 bits */
  928.         value = (value & 0xfffff800) >> 11;
  929.         BFD_ASSERT(value == L(init_value,constant_value));
  930.         break;
  931.  
  932.     case e_rsel:        /* R  : Set bits 0-20 to zero          */
  933.         value = value & 0x7ff;
  934.         BFD_ASSERT(value == R(init_value,constant_value));
  935.         break;
  936.  
  937.     case e_ldsel:       /* LD : Add 0x800, arithmetic shift
  938.                             right 11 bits                  */
  939.         value += 0x800;
  940.         value = (value & 0xfffff800) >> 11;    
  941.         BFD_ASSERT(value == LD(init_value,constant_value));
  942.         break;
  943.  
  944.     case e_rdsel:       /* RD : Set bits 0-20 to one           */
  945.         value |= 0xfffff800;
  946.         BFD_ASSERT(value == RD(init_value,constant_value));
  947.         break;
  948.  
  949.     case e_lrsel:       /* LR : L with "rounded" constant      */
  950.         value = value + ((constant_value + 0x1000) & 0xffffe000);
  951.         value = (value & 0xfffff800) >> 11;
  952.         BFD_ASSERT(value == LR(init_value,constant_value));
  953.         break;
  954.  
  955.     case e_rrsel:       /* RR : R with "rounded" constant      */
  956.         value = value + ((constant_value + 0x1000) & 0xffffe000);
  957.         value = (value & 0x7ff) + constant_value - ((constant_value + 0x1000) & 0xffffe000);
  958.         BFD_ASSERT(value == RR(init_value,constant_value));
  959.         break;
  960.  
  961.     default:
  962.         fprintf(stderr,"Unrecognized field_selector 0x%02x\n", r_field);
  963.         break;
  964.   }
  965.   return value;
  966.     
  967. }
  968.  
  969. /* End of miscellaneous support functions. */
  970. #endif /* HOST_HPPAHPUX */
  971.  
  972. #ifdef HOST_HPPABSD
  973.   /* All the core file code for BSD needs to be rewritten cleanly.  For
  974.      now we do not support core files under BSD.  */
  975.  
  976. #define hppa_core_file_p _bfd_dummy_target
  977. #define hppa_core_file_failing_command _bfd_dummy_core_file_failing_command
  978. #define hppa_core_file_failing_signal _bfd_dummy_core_file_failing_signal
  979. #define hppa_core_file_matches_executable_p _bfd_dummy_core_file_matches_executable_p
  980. #endif /* HOST_HPPABSD */
  981.  
  982. #define hppa_bfd_debug_info_start        bfd_void
  983. #define hppa_bfd_debug_info_end          bfd_void
  984. #define hppa_bfd_debug_info_accumulate   (PROTO(void,(*),(bfd*, struct sec *))) bfd_void
  985.  
  986. #define hppa_openr_next_archived_file    bfd_generic_openr_next_archived_file
  987. #define hppa_generic_stat_arch_elt       bfd_generic_stat_arch_elt
  988. #define hppa_slurp_armap                  bfd_false
  989. #define hppa_slurp_extended_name_table    _bfd_slurp_extended_name_table
  990. #define hppa_truncate_arname              (void (*)())bfd_nullvoidptr
  991. #define hppa_write_armap                  0
  992.  
  993. #define hppa_get_lineno                   (struct lineno_cache_entry *(*)())bfd_nullvoidptr
  994. #define    hppa_close_and_cleanup               bfd_generic_close_and_cleanup
  995. #define hppa_get_section_contents          bfd_generic_get_section_contents
  996.  
  997. #define hppa_bfd_get_relocated_section_contents \
  998.  bfd_generic_get_relocated_section_contents
  999. #define hppa_bfd_relax_section bfd_generic_relax_section
  1000. #define hppa_bfd_seclet_link bfd_generic_seclet_link
  1001. #define hppa_bfd_reloc_type_lookup \
  1002.   ((CONST struct reloc_howto_struct *(*) PARAMS ((bfd *, bfd_reloc_code_real_type))) bfd_nullvoidptr)
  1003. #define hppa_bfd_make_debug_symbol \
  1004.   ((asymbol *(*) PARAMS ((bfd *, void *, unsigned long))) bfd_nullvoidptr)
  1005.  
  1006. bfd_target hppa_vec =
  1007. {
  1008.   "hppa",            /* name */
  1009.   bfd_target_hppa_flavour,
  1010.   true,                /* target byte order */
  1011.   true,                /* target headers byte order */
  1012.   (HAS_RELOC | EXEC_P |        /* object flags */
  1013.    HAS_LINENO | HAS_DEBUG |
  1014.    HAS_SYMS | HAS_LOCALS | DYNAMIC | WP_TEXT | D_PAGED),
  1015.   (SEC_CODE|SEC_DATA|SEC_ROM|SEC_HAS_CONTENTS
  1016.    |SEC_ALLOC | SEC_LOAD | SEC_RELOC), /* section flags */
  1017.  
  1018.    /* leading_symbol_char: is the first char of a user symbol
  1019.       predictable, and if so what is it */
  1020.    0,
  1021.   ' ',                /* ar_pad_char */
  1022.   16,                /* ar_max_namelen */
  1023.     3,                /* minimum alignment */
  1024. _do_getb64, _do_getb_signed_64, _do_putb64,
  1025.     _do_getb32, _do_getb_signed_32, _do_putb32,
  1026.     _do_getb16, _do_getb_signed_16, _do_putb16, /* data */
  1027. _do_getb64, _do_getb_signed_64, _do_putb64,
  1028.     _do_getb32, _do_getb_signed_32, _do_putb32,
  1029.     _do_getb16, _do_getb_signed_16, _do_putb16, /* hdrs */
  1030.   { _bfd_dummy_target,
  1031.      hppa_object_p,        /* bfd_check_format */
  1032.      bfd_generic_archive_p,
  1033.      hppa_core_file_p,
  1034.      },
  1035.   {
  1036.     bfd_false,
  1037.     hppa_mkobject, 
  1038.     _bfd_generic_mkarchive,
  1039.     bfd_false
  1040.     },
  1041.   {
  1042.     bfd_false,
  1043.     hppa_write_object_contents,
  1044.     _bfd_write_archive_contents,
  1045.     bfd_false,
  1046.   },
  1047. #undef hppa
  1048.   JUMP_TABLE(hppa),
  1049.   (PTR) 0
  1050. };
  1051.  
  1052. #endif /* HOST_HPPAHPUX || HOST_HPPABSD */
  1053.